https://rust-cli.github.io/book/tutorial/setup.html
먼저 Rust를 설치해보자
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
이미 설치되어있으면
rustup update
이러면 rust용 툴체인 rustc
, rustup
, cargo
가 설치된다.
다음 커맨드로 새 프로젝트 grrs
생성
cargo new grrs
cd grrs
cargo run
실행하면 다음이 출력됨
Hello, world!